home *** CD-ROM | disk | FTP | other *** search
- #
- # SH profile
- #
- MINT=/bin
- export MINT
- TEMP=/f/temp
- export TEMP
- TMPDIR=/f/temp
- export TMPDIR
-
- # Standard path
- PATH=.:/bin:/usr/ucb:/usr/local/bin:/usr/local/bin/X11:/usr/local/bin/gcc:/c/archiver
- export PATH
-
- SYSSCREENRC=/etc/screenrc
- export SYSSCREENRC
-
- # MANUAL SYSTEM
- MANPAGER=/bin/manpager.ttp
- export MANPAGER
- MANDIR=/usr/man
- export MANDIR
- MANPATH=/usr/man
- export MANPATH
- TMACDIR=/usr/man/macro
- export TMACDIR
-
- #
- # COMPILER ENVIROMENT
- #
- # GNU C / C++
- GCCEXEC=/usr/local/bin/gcc/gcc-
- export GCCEXEC
- GNULIB=/usr/lib
- export GNULIB
- GNUINC=/usr/include
- export GNUINC
- GXXINC=
- export GXXINC
- MAKEFILES=/etc/default.mak
- export MAKEFILES
- PATH=$PATH:/usr/local/bin/gcc:/usr/local/bin/gcc/gcc-
- export PATH
- CC=gcc
- export CC
- AS=gcc-as
- export AS
- AR=gcc-ar
- export AR
-
- PS1=$USER':'
- PS2=$USER'>'
-
- # Set the TERM variable properly when running under X without logging in
- # MiNT kludge here, as processes appear in the filesystem under /proc
- # this goes through all the files in the /proc directory & checks for
- # one called X.* - so make sure the only program you run called X is the
- # X-Server (started by xinit usually).
-
- for i in /proc/*
- do
- case $i in
- /proc/X.*) TERM=xterm
- export TERM ;;
- *) ;;
- esac
- done
-
-
-